home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / dev / c / cpp2latex.lha / c++2latex / config / mkpt < prev    next >
Encoding:
Text File  |  1991-12-16  |  508 b   |  21 lines

  1. #!/bin/csh -f
  2. echo "#################################################"
  3. echo "# Pretty printing rules generated automagically"
  4. echo "# on `date` by `whoami`"
  5. echo "# using joke's *mkpt* csh script..."
  6. echo "# Now just type in: *make pretty*"
  7. echo "#################################################"
  8. echo "DVIS = \"
  9. foreach i ($argv)
  10.     if ("$i" != "$argv[$#argv]") then
  11.         echo "    $i.dvi    \"
  12.     else
  13.         echo "    $i.dvi"
  14.     endif
  15. end
  16. echo ""
  17. echo "SimpleDviTarget(pretty)"
  18. foreach i ($argv)
  19.     echo "MakeDviFromSrc($i)"
  20. end
  21.